home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / client.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  629 b   |  18 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFILE("readme.txt");
  6. USEFORM("CLNTFORM.cpp", ClientForm);
  7. USEUNIT("IPCTHRD.cpp");
  8. //---------------------------------------------------------------------
  9. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  10. {
  11.     Application->Initialize();
  12.     Application->CreateForm(__classid(TClientForm), &ClientForm);
  13.     Application->Run();
  14.  
  15.     return 0;
  16. }
  17. //---------------------------------------------------------------------------
  18.